home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / bin / xscreensaver-text < prev    next >
Text File  |  2009-09-22  |  26KB  |  867 lines

  1. #!/usr/bin/perl -w
  2. # Copyright ⌐ 2005-2008 Jamie Zawinski <jwz@jwz.org>
  3. #
  4. # Permission to use, copy, modify, distribute, and sell this software and its
  5. # documentation for any purpose is hereby granted without fee, provided that
  6. # the above copyright notice appear in all copies and that both that
  7. # copyright notice and this permission notice appear in supporting
  8. # documentation.  No representations are made about the suitability of this
  9. # software for any purpose.  It is provided "as is" without express or 
  10. # implied warranty.
  11. #
  12. # This program writes some text to stdout, based on preferences in the
  13. # .xscreensaver file.  It may load a file, a URL, run a program, or just
  14. # print the date.
  15. #
  16. # In a native MacOS build of xscreensaver, this script is included in
  17. # the Contents/Resources/ directory of each screen saver .bundle that
  18. # uses it; and in that case, it looks up its resources using
  19. # /usr/bin/defaults instead.
  20. #
  21. # Created: 19-Mar-2005.
  22.  
  23. require 5;
  24. #use diagnostics;    # Fails on some MacOS 10.5 systems
  25. use strict;
  26.  
  27. use Socket;
  28. use POSIX qw(strftime);
  29. use Text::Wrap qw(wrap);
  30. use bytes;
  31.  
  32. my $progname = $0; $progname =~ s@.*/@@g;
  33. my $version = q{ $Revision: 1.17 $ }; $version =~ s/^[^0-9]+([0-9.]+).*$/$1/;
  34.  
  35. my $verbose = 0;
  36. my $http_proxy = undef;
  37.  
  38. my $config_file = $ENV{HOME} . "/.xscreensaver";
  39. my $text_mode     = 'date';
  40. my $text_literal  = '';
  41. my $text_file     = '';
  42. my $text_program  = '';
  43. my $text_url      = '';
  44.  
  45. my $wrap_columns  = undef;
  46. my $nyarlathotep_p = 0;
  47.  
  48.  
  49. # Maps HTML character entities to the corresponding Latin1 characters.
  50. #
  51. my %entity_table = (
  52.    "quot"   => '"', "amp"    => '&', "lt"     => '<', "gt"     => '>',
  53.    "nbsp"   => ' ', "iexcl"  => 'í', "cent"   => 'ó', "pound"  => 'ú',
  54.    "curren" => 'ñ', "yen"    => 'Ñ', "brvbar" => 'ª', "sect"   => 'º',
  55.    "uml"    => '¿', "copy"   => '⌐', "ordf"   => '¬', "laquo"  => '½',
  56.    "not"    => '¼', "shy"    => '¡', "reg"    => '«', "macr"   => '»',
  57.    "deg"    => '░', "plusmn" => '▒', "sup2"   => '▓', "sup3"   => '│',
  58.    "acute"  => '┤', "micro"  => '╡', "para"   => '╢', "middot" => '╖',
  59.    "cedil"  => '╕', "sup1"   => '╣', "ordm"   => '║', "raquo"  => '╗',
  60.    "frac14" => '╝', "frac12" => '╜', "frac34" => '╛', "iquest" => '┐',
  61.    "Agrave" => '└', "Aacute" => '┴', "Acirc"  => '┬', "Atilde" => '├',
  62.    "Auml"   => '─', "Aring"  => '┼', "AElig"  => '╞', "Ccedil" => '╟',
  63.    "Egrave" => '╚', "Eacute" => '╔', "Ecirc"  => '╩', "Euml"   => '╦',
  64.    "Igrave" => '╠', "Iacute" => '═', "Icirc"  => '╬', "Iuml"   => '╧',
  65.    "ETH"    => '╨', "Ntilde" => '╤', "Ograve" => '╥', "Oacute" => '╙',
  66.    "Ocirc"  => '╘', "Otilde" => '╒', "Ouml"   => '╓', "times"  => '╫',
  67.    "Oslash" => '╪', "Ugrave" => '┘', "Uacute" => '┌', "Ucirc"  => '█',
  68.    "Uuml"   => '▄', "Yacute" => '▌', "THORN"  => '▐', "szlig"  => '▀',
  69.    "agrave" => 'α', "aacute" => 'ß', "acirc"  => 'Γ', "atilde" => 'π',
  70.    "auml"   => 'Σ', "aring"  => 'σ', "aelig"  => 'µ', "ccedil" => 'τ',
  71.    "egrave" => 'Φ', "eacute" => 'Θ', "ecirc"  => 'Ω', "euml"   => 'δ',
  72.    "igrave" => '∞', "iacute" => 'φ', "icirc"  => 'ε', "iuml"   => '∩',
  73.    "eth"    => '≡', "ntilde" => '±', "ograve" => '≥', "oacute" => '≤',
  74.    "ocirc"  => '⌠', "otilde" => '⌡', "ouml"   => '÷', "divide" => '≈',
  75.    "oslash" => '°', "ugrave" => '∙', "uacute" => '·', "ucirc"  => '√',
  76.    "uuml"   => 'ⁿ', "yacute" => '²', "thorn"  => '■', "yuml"   => ' ',
  77.    "apos"   => '\'',
  78.  
  79.    # HTML 4 entities that do not have 1:1 Latin1 mappings.
  80.    "bull"  => "*",   "hellip"=> "...",  "prime" => "'",  "Prime" => "\"",
  81.    "frasl" => "/",   "trade" => "[tm]", "larr"  => "<-", "rarr"  => "->",
  82.    "harr"  => "<->", "lArr"  => "<=",   "rArr"  => "=>", "hArr"  => "<=>",
  83.    "empty" => "╪",   "minus" => "-",    "lowast"=> "*",  "sim"   => "~",
  84.    "cong"  => "=~",  "asymp" => "~",    "ne"    => "!=", "equiv" => "==",
  85.    "le"    => "<=",  "ge"    => ">=",   "lang"  => "<",  "rang"  => ">",
  86.    "loz"   => "<>",  "OElig" => "OE",   "oelig" => "oe", "Yuml"  => "Y",
  87.    "circ"  => "^",   "tilde" => "~",    "ensp"  => " ",  "emsp"  => " ",
  88.    "thinsp"=> " ",   "ndash" => "-",    "mdash" => "-",  "lsquo" => "`",
  89.    "rsquo" => "'",   "sbquo" => "'",    "ldquo" => "\"", "rdquo" => "\"",
  90.    "bdquo" => "\"",  "lsaquo"=> "<",    "rsaquo"=> ">",
  91. );
  92.  
  93. # Maps certain UTF8 characters (2 or 3 bytes) to the corresponding
  94. # Latin1 characters.
  95. #
  96. my %unicode_latin1_table = (
  97.    "\xC2\xA1" => 'í', "\xC2\xA2" => 'ó', "\xC2\xA3" => 'ú', "\xC2\xA4" => 'ñ',
  98.    "\xC2\xA5" => 'Ñ', "\xC2\xA6" => 'ª', "\xC2\xA7" => 'º', "\xC2\xA8" => '¿',
  99.    "\xC2\xA9" => '⌐', "\xC2\xAA" => '¬', "\xC2\xAB" => '½', "\xC2\xAC" => '¼',
  100.    "\xC2\xAD" => '¡', "\xC2\xAE" => '«', "\xC2\xAF" => '»', "\xC2\xB0" => '░',
  101.    "\xC2\xB1" => '▒', "\xC2\xB2" => '▓', "\xC2\xB3" => '│', "\xC2\xB4" => '┤',
  102.    "\xC2\xB5" => '╡', "\xC2\xB6" => '╢', "\xC2\xB7" => '╖', "\xC2\xB8" => '╕',
  103.    "\xC2\xB9" => '╣', "\xC2\xBA" => '║', "\xC2\xBB" => '╗', "\xC2\xBC" => '╝',
  104.    "\xC2\xBD" => '╜', "\xC2\xBE" => '╛', "\xC2\xBF" => '┐', "\xC3\x80" => '└',
  105.    "\xC3\x81" => '┴', "\xC3\x82" => '┬', "\xC3\x83" => '├', "\xC3\x84" => '─',
  106.    "\xC3\x85" => '┼', "\xC3\x86" => '╞', "\xC3\x87" => '╟', "\xC3\x88" => '╚',
  107.    "\xC3\x89" => '╔', "\xC3\x8A" => '╩', "\xC3\x8B" => '╦', "\xC3\x8C" => '╠',
  108.    "\xC3\x8D" => '═', "\xC3\x8E" => '╬', "\xC3\x8F" => '╧', "\xC3\x90" => '╨',
  109.    "\xC3\x91" => '╤', "\xC3\x92" => '╥', "\xC3\x93" => '╙', "\xC3\x94" => '╘',
  110.    "\xC3\x95" => '╒', "\xC3\x96" => '╓', "\xC3\x97" => '╫', "\xC3\x98" => '╪',
  111.    "\xC3\x99" => '┘', "\xC3\x9A" => '┌', "\xC3\x9B" => '█', "\xC3\x9C" => '▄',
  112.    "\xC3\x9D" => '▌', "\xC3\x9E" => '▐', "\xC3\x9F" => '▀', "\xC3\xA0" => 'α',
  113.    "\xC3\xA1" => 'ß', "\xC3\xA2" => 'Γ', "\xC3\xA3" => 'π', "\xC3\xA4" => 'Σ',
  114.    "\xC3\xA5" => 'σ', "\xC3\xA6" => 'µ', "\xC3\xA7" => 'τ', "\xC3\xA8" => 'Φ',
  115.    "\xC3\xA9" => 'Θ', "\xC3\xAA" => 'Ω', "\xC3\xAB" => 'δ', "\xC3\xAC" => '∞',
  116.    "\xC3\xAD" => 'φ', "\xC3\xAE" => 'ε', "\xC3\xAF" => '∩', "\xC3\xB0" => '≡',
  117.    "\xC3\xB1" => '±', "\xC3\xB2" => '≥', "\xC3\xB3" => '≤', "\xC3\xB4" => '⌠',
  118.    "\xC3\xB5" => '⌡', "\xC3\xB6" => '÷', "\xC3\xB7" => '≈', "\xC3\xB8" => '°',
  119.    "\xC3\xB9" => '∙', "\xC3\xBA" => '·', "\xC3\xBB" => '√', "\xC3\xBC" => 'ⁿ',
  120.    "\xC3\xBD" => '²', "\xC3\xBE" => '■', "\xC3\xBF" => ' ',
  121.  
  122.    "\xE2\x80\x93" => '--',  "\xE2\x80\x94" => '--',
  123.    "\xE2\x80\x98" => '`',   "\xE2\x80\x99" => '\'',
  124.    "\xE2\x80\x9C" => "``",  "\xE2\x80\x9D" => "''",
  125.    "\xE2\x80\xA6" => '...',
  126. );
  127.  
  128.  
  129. # Convert any HTML entities to Latin1 characters.
  130. #
  131. sub de_entify($) {
  132.   my ($text) = @_;
  133.   $text =~ s/(&(\#)?([[:alpha:]\d]+);?)/
  134.     {
  135.      my $c;
  136.      if ($2) {
  137.        $c = chr($3);  # the &#number is always decimal, right?
  138.      } else {
  139.        $c = $entity_table{$3};
  140.      }
  141. #    print STDERR "$progname: warning: unknown HTML character entity \"$1\"\n"
  142. #     unless $c;
  143.      ($c ? $c : "[$3]");
  144.     }
  145.    /gexi;
  146.   return $text;
  147. }
  148.  
  149.  
  150. # Convert any Unicode characters to Latin1 if possible.
  151. # Unconvertable bytes are left alone.
  152. #
  153. sub de_unicoddle($) {
  154.   my ($text) = @_;
  155.   foreach my $key (keys (%unicode_latin1_table)) {
  156.     my $val = $unicode_latin1_table{$key};
  157.     $text =~ s/$key/$val/gs;
  158.   }
  159.   return $text;
  160. }
  161.  
  162.  
  163. # Reads the prefs we use from ~/.xscreensaver
  164. #
  165. sub get_x11_prefs() {
  166.   my $got_any_p = 0;
  167.   local *IN;
  168.  
  169.   if (open (IN, "<$config_file")) {
  170.     print STDERR "$progname: reading $config_file\n" if ($verbose > 1);
  171.     my $body = '';
  172.     while (<IN>) { $body .= $_; }
  173.     close IN;
  174.     $got_any_p = get_x11_prefs_1 ($body);
  175.  
  176.   } elsif ($verbose > 1) {
  177.     print STDERR "$progname: $config_file: $!\n";
  178.   }
  179.  
  180.   if (! $got_any_p && defined ($ENV{DISPLAY})) {
  181.     # We weren't able to read settings from the .xscreensaver file.
  182.     # Fall back to any settings in the X resource database
  183.     # (/usr/X11R6/lib/X11/app-defaults/XScreenSaver)
  184.     #
  185.     print STDERR "$progname: reading X resources\n" if ($verbose > 1);
  186.     my $body = `appres XScreenSaver xscreensaver -1`;
  187.     $got_any_p = get_x11_prefs_1 ($body);
  188.   }
  189.  
  190.   if ($verbose > 1) {
  191.     printf STDERR "$progname: mode:    $text_mode\n";
  192.     printf STDERR "$progname: literal: $text_literal\n";
  193.     printf STDERR "$progname: file:    $text_file\n";
  194.     printf STDERR "$progname: program: $text_program\n";
  195.     printf STDERR "$progname: url:     $text_url\n";
  196.   }
  197.  
  198.   $text_mode =~ tr/A-Z/a-z/;
  199.   $text_literal =~ s@\\n@\n@gs;
  200. }
  201.  
  202.  
  203. sub get_x11_prefs_1($) {
  204.   my ($body) = @_;
  205.  
  206.   my $got_any_p = 0;
  207.   $body =~ s@\\\n@@gs;
  208.  
  209.   if ($body =~ m/^[.*]*textMode:[ \t]*([^\s]+)\s*$/im) {
  210.     $text_mode = $1;
  211.     $got_any_p = 1;
  212.   }
  213.   if ($body =~ m/^[.*]*textLiteral:[ \t]*(.*?)[ \t]*$/im) {
  214.     $text_literal = $1;
  215.   }
  216.   if ($body =~ m/^[.*]*textFile:[ \t]*(.*?)[ \t]*$/im) {
  217.     $text_file = $1;
  218.   }
  219.   if ($body =~ m/^[.*]*textProgram:[ \t]*(.*?)[ \t]*$/im) {
  220.     $text_program = $1;
  221.   }
  222.   if ($body =~ m/^[.*]*textURL:[ \t]*(.*?)[ \t]*$/im) {
  223.     $text_url = $1;
  224.   }
  225.  
  226.   return $got_any_p;
  227. }
  228.  
  229.  
  230. sub get_cocoa_prefs($) {
  231.   my ($id) = @_;
  232.   my $v;
  233.  
  234.   print STDERR "$progname: reading Cocoa prefs: \"$id\"\n" if ($verbose > 1);
  235.  
  236.   $v = get_cocoa_pref_1 ($id, "textMode");
  237.   $text_mode = $v if defined ($v);
  238.  
  239.   # The "textMode" pref is set to a number instead of a string because I
  240.   # can't figure out the black magic to make Cocoa bindings work right.
  241.   #
  242.   if    ($text_mode eq '0') { $text_mode = 'date';    }
  243.   elsif ($text_mode eq '1') { $text_mode = 'literal'; }
  244.   elsif ($text_mode eq '2') { $text_mode = 'file';    }
  245.   elsif ($text_mode eq '3') { $text_mode = 'url';     }
  246.  
  247.   $v = get_cocoa_pref_1 ($id, "textLiteral");
  248.   $text_literal = $v if defined ($v);
  249.  
  250.   $v = get_cocoa_pref_1 ($id, "textFile");
  251.   $text_file = $v if defined ($v);
  252.  
  253.   $v = get_cocoa_pref_1 ($id, "textProgram");
  254.   $text_program = $v if defined ($v);
  255.  
  256.   $v = get_cocoa_pref_1 ($id, "textURL");
  257.   $text_url = $v if defined ($v);
  258. }
  259.  
  260.  
  261. sub get_cocoa_pref_1($$) {
  262.   my ($id, $key) = @_;
  263.   # make sure there's nothing stupid/malicious in either string.
  264.   $id  =~ s/[^-a-z\d. ]/_/gsi;
  265.   $key =~ s/[^-a-z\d. ]/_/gsi;
  266.   my $cmd = "defaults -currentHost read \"$id\" \"$key\"";
  267.  
  268.   print STDERR "$progname: executing $cmd\n"
  269.     if ($verbose > 3);
  270.  
  271.   my $val = `$cmd 2>/dev/null`;
  272.   $val =~ s/^\s+//s;
  273.   $val =~ s/\s+$//s;
  274.  
  275.   print STDERR "$progname: Cocoa: $id $key = \"$val\"\n"
  276.     if ($verbose > 2);
  277.  
  278.   $val = undef if ($val =~ m/^$/s);
  279.  
  280.   return $val;
  281. }
  282.  
  283.  
  284. # like system() but checks errors.
  285. #
  286. sub safe_system(@) {
  287.   my (@cmd) = @_;
  288.  
  289.   print STDERR "$progname: executing " . join(' ', @cmd) . "\n"
  290.     if ($verbose > 3);
  291.  
  292.   system @cmd;
  293.   my $exit_value  = $? >> 8;
  294.   my $signal_num  = $? & 127;
  295.   my $dumped_core = $? & 128;
  296.   error ("$cmd[0]: core dumped!") if ($dumped_core);
  297.   error ("$cmd[0]: signal $signal_num!") if ($signal_num);
  298.   error ("$cmd[0]: exited with $exit_value!") if ($exit_value);
  299. }
  300.  
  301.  
  302. sub which($) {
  303.   my ($cmd) = @_;
  304.  
  305.   if ($cmd =~ m@^\./|^/@) {
  306.     error ("cannot execute $cmd") unless (-x $cmd);
  307.     return $cmd;
  308.   }
  309.  
  310.  foreach my $dir (split (/:/, $ENV{PATH})) {
  311.     my $cmd2 = "$dir/$cmd";
  312.     print STDERR "$progname:   checking $cmd2\n" if ($verbose > 3);
  313.     return $cmd2 if (-x "$cmd2");
  314.   }
  315.   error ("$cmd not found on \$PATH");
  316. }
  317.  
  318.  
  319. sub output() {
  320.  
  321.   # Do some basic sanity checking (null text, null file names, etc.)
  322.   #
  323.   if (($text_mode eq 'literal' && $text_literal =~ m/^\s*$/i) ||
  324.       ($text_mode eq 'file'    && $text_file    =~ m/^\s*$/i) ||
  325.       ($text_mode eq 'program' && $text_program =~ m/^\s*$/i) ||
  326.       ($text_mode eq 'url'     && $text_url     =~ m/^\s*$/i)) {
  327.     print STDERR "$progname: falling back to 'date'\n" if ($verbose);
  328.     $text_mode = 'date';
  329.   }
  330.  
  331.   if ($text_mode eq 'literal') {
  332.     $text_literal = strftime ($text_literal, localtime);
  333.     $text_literal =~ y/A-Za-z/N-ZA-Mn-za-m/ if ($nyarlathotep_p);
  334.     print STDOUT $text_literal;
  335.     print STDOUT "\n" unless ($text_literal =~ m/\n$/s);
  336.  
  337.   } elsif ($text_mode eq 'file') {
  338.  
  339.     $text_file =~ s@^~/@$ENV{HOME}/@s;     # allow literal "~/"
  340.  
  341.     local *IN;
  342.     if (open (IN, "<$text_file")) {
  343.       print STDERR "$progname: reading $text_file\n" if ($verbose);
  344.  
  345.       if ($wrap_columns && $wrap_columns > 0) {
  346.         # read it, then reformat it.
  347.         my $body = '';
  348.         while (<IN>) { $body .= $_; }
  349.         reformat_text ($body);
  350.       } else {
  351.         # stream it
  352.         while (<IN>) { 
  353.           y/A-Za-z/N-ZA-Mn-za-m/ if ($nyarlathotep_p);
  354.           print $_;
  355.         }
  356.       }
  357.       close IN;
  358.     } else {
  359.       error ("$text_file: $!");
  360.     }
  361.  
  362.   } elsif ($text_mode eq 'program') {
  363.  
  364.     my ($prog, $args) = ($text_program =~ m/^([^\s]+)(.*)$/);
  365.     $text_program = which ($prog) . $args;
  366.     print STDERR "$progname: running $text_program\n" if ($verbose);
  367.  
  368.     if ($wrap_columns && $wrap_columns > 0) {
  369.       # read it, then reformat it.
  370.       my $body = `( $text_program ) 2>&1`;
  371.       reformat_text ($body);
  372.     } else {
  373.       # stream it
  374.       safe_system ("$text_program");
  375.     }
  376.  
  377.   } elsif ($text_mode eq 'url') {
  378.  
  379.     get_url_text ($text_url);
  380.  
  381.   } else { # $text_mode eq 'date'
  382.  
  383.     safe_system ("uname", "-n");
  384.  
  385.     my $unamep = 1;
  386.  
  387.     if (-f "/etc/redhat-release") {        # "Fedora Core release 4 (Stentz)"
  388.       system ("cat", "/etc/redhat-release");
  389.     }
  390.  
  391.     if (-f "/etc/release") {                # "Solaris 10 3/05 s10_74L2a X86"
  392.       safe_system ("head", "-1", "/etc/release");
  393.     }
  394.  
  395.     if (-f "/usr/sbin/system_profiler") {   # "Mac OS X 10.4.5 (8H14)"
  396.       my $sp =                    # "iMac G5"
  397.         `/usr/sbin/system_profiler SPSoftwareDataType SPHardwareDataType`;
  398.       my ($v) = ($sp =~ m/^\s*System Version:\s*(.*)$/mi);
  399.       my ($s) = ($sp =~ m/^\s*CPU Speed:\s*(.*)$/mi);
  400.       my ($t) = ($sp =~ m/^\s*Machine Name:\s*(.*)$/mi);
  401.       print "$v\n" if ($v);
  402.       print "$s $t\n" if ($s && $t);
  403.       $unamep = !defined ($v);
  404.     }
  405.  
  406.     if ($unamep) {
  407.       safe_system ("uname", "-sr");        # "Linux 2.6.15-1.1831_FC4"
  408.     }
  409.  
  410.     print "\n";
  411.     safe_system ("date", "+%c");
  412.     print "\n";
  413.     my $ut = `uptime`;
  414.     $ut =~ s/^[ \d:]*(am|pm)?//i;
  415.     $ut =~ s/,\s*(load)/\n$1/;
  416.     print "$ut\n";
  417.   }
  418.  
  419. }
  420.  
  421.  
  422. # Loads the given URL, returns: $http, $head, $body.
  423. #
  424. sub get_url_1($;$) {
  425.   my ($url, $referer) = @_;
  426.   
  427.   if (! ($url =~ m@^(http|feed)://@i)) {
  428.     error ("not an HTTP URL: $url");
  429.   }
  430.  
  431.   my ($url_proto, $dummy, $serverstring, $path) = split(/\//, $url, 4);
  432.   $path = "" unless $path;
  433.  
  434.   my ($them,$port) = split(/:/, $serverstring);
  435.   $port = 80 unless $port;
  436.  
  437.   my $them2 = $them;
  438.   my $port2 = $port;
  439.   if ($http_proxy) {
  440.     $serverstring = $http_proxy if $http_proxy;
  441.     $serverstring =~ s@^[a-z]+://@@;
  442.     ($them2,$port2) = split(/:/, $serverstring);
  443.     $port2 = 80 unless $port2;
  444.   }
  445.  
  446.   my ($remote, $iaddr, $paddr, $proto, $line);
  447.   $remote = $them2;
  448.   if ($port2 =~ /\D/) { $port2 = getservbyname($port2, 'tcp') }
  449.   if (!$port2) {
  450.     error ("unrecognised port in $url");
  451.   }
  452.  
  453.   $iaddr = inet_aton($remote);
  454.   error ("host not found: $remote") unless ($iaddr);
  455.  
  456.   $paddr   = sockaddr_in($port2, $iaddr);
  457.  
  458.  
  459.   my $head = "";
  460.   my $body = "";
  461.  
  462.   $proto   = getprotobyname('tcp');
  463.   if (!socket(S, PF_INET, SOCK_STREAM, $proto)) {
  464.     error ("socket: $!");
  465.   }
  466.   if (!connect(S, $paddr)) {
  467.     error ("connect($serverstring): $!");
  468.   }
  469.  
  470.   select(S); $| = 1; select(STDOUT);
  471.  
  472.   my $user_agent = "$progname/$version";
  473.  
  474.   my $hdrs = ("GET " . ($http_proxy ? $url : "/$path") . " HTTP/1.0\r\n" .
  475.               "Host: $them\r\n" .
  476.               "User-Agent: $user_agent\r\n");
  477.   if ($referer) {
  478.     $hdrs .= "Referer: $referer\r\n";
  479.   }
  480.   $hdrs .= "\r\n";
  481.  
  482.   if ($verbose > 3) {
  483.     foreach (split('\r?\n', $hdrs)) {
  484.       print STDERR "  ==> $_\n";
  485.     }
  486.   }
  487.   print S $hdrs;
  488.   my $http = <S> || "";
  489.  
  490.   $_  = $http;
  491.   s/[\r\n]+$//s;
  492.   print STDERR "  <== $_\n" if ($verbose > 3);
  493.  
  494.   while (<S>) {
  495.     $head .= $_;
  496.     s/[\r\n]+$//s;
  497.     last if m@^$@;
  498.     print STDERR "  <== $_\n" if ($verbose > 3);
  499.   }
  500.  
  501.   print STDERR "  <== \n" if ($verbose > 4);
  502.   my $lines = 0;
  503.   while (<S>) {
  504.     s/\r\n/\n/gs;
  505.     print STDERR "  <== $_" if ($verbose > 4);
  506.     $body .= $_;
  507.     $lines++;
  508.   }
  509.  
  510.   print STDERR "  <== [ body ]: $lines lines, " . length($body) . " bytes\n"
  511.     if ($verbose == 4);
  512.  
  513.   close S;
  514.  
  515.   if (!$http) {
  516.     error ("null response: $url");
  517.   }
  518.  
  519.   return ( $http, $head, $body );
  520. }
  521.  
  522.  
  523. # Loads the given URL, processes redirects, returns (content-type, body).
  524. #
  525. sub get_url($;$) {
  526.   my ($url, $referer) = @_;
  527.  
  528.   print STDERR "$progname: loading $url\n" if ($verbose > 2);
  529.  
  530.   my $orig_url = $url;
  531.   my $loop_count = 0;
  532.   my $max_loop_count = 10;
  533.  
  534.   do {
  535.     my ( $http, $head, $body ) = get_url_1 ($url, $referer);
  536.  
  537.     $http =~ s/[\r\n]+$//s;
  538.  
  539.     if ( $http =~ m@^HTTP/[0-9.]+ 30[123]@ ) {
  540.       $_ = $head;
  541.  
  542.       my ( $location ) = m@^location:[ \t]*(.*)$@im;
  543.       if ( $location ) {
  544.         $location =~ s/[\r\n]$//;
  545.  
  546.         print STDERR "$progname: redirect from $url to $location\n"
  547.           if ($verbose > 3);
  548.  
  549.         $referer = $url;
  550.         $url = $location;
  551.  
  552.         if ($url =~ m@^/@) {
  553.           $referer =~ m@^(http://[^/]+)@i;
  554.           $url = $1 . $url;
  555.         } elsif (! ($url =~ m@^[a-z]+:@i)) {
  556.           $_ = $referer;
  557.           s@[^/]+$@@g if m@^http://[^/]+/@i;
  558.           $_ .= "/" if m@^http://[^/]+$@i;
  559.           $url = $_ . $url;
  560.         }
  561.  
  562.       } else {
  563.         error ("no Location with \"$http\"");
  564.       }
  565.  
  566.       if ($loop_count++ > $max_loop_count) {
  567.         error ("too many redirects ($max_loop_count) from $orig_url");
  568.       }
  569.  
  570.     } elsif ( $http =~ m@^HTTP/[0-9.]+ ([4-9][0-9][0-9].*)$@ ) {
  571.       error ("failed: $1 ($url)");
  572.  
  573.     } else {
  574.       my $ct = 'text/plain';
  575.       $ct = $1 if ($head =~ m/^content-type:\s*([^\s]+)/mi);
  576.       return ($ct, $body);
  577.     }
  578.   } while (1);
  579. }
  580.  
  581.  
  582. # Make an educated guess as to what's in this document.
  583. # We don't necessarily take the Content-Type header at face value.
  584. # Returns 'html', 'rss', or 'text';
  585. #
  586. sub guess_content_type($$) {
  587.   my ($ct, $body) = @_;
  588.  
  589.   $body =~ s/^(.{512}).*/$1/s;  # only look in first half K of file
  590.  
  591.   if ($ct =~ m@^text/.*html@i)          { return 'html'; }
  592.   if ($ct =~ m@\b(atom|rss|xml)\b@i)    { return 'rss';  }
  593.  
  594.   if ($body =~ m@^\s*<\?xml@is)         { return 'rss';  }
  595.   if ($body =~ m@^\s*<!DOCTYPE RSS@is)  { return 'rss';  }
  596.   if ($body =~ m@^\s*<!DOCTYPE HTML@is) { return 'html'; }
  597.  
  598.   if ($body =~ m@<(BASE|HTML|HEAD|BODY|SCRIPT|STYLE|TABLE|A\s+HREF)\b@i) {
  599.     return 'html';
  600.   }
  601.  
  602.   if ($body =~ m@<(RSS|CHANNEL|GENERATOR|DESCRIPTION|CONTENT|FEED|ENTRY)\b@i) {
  603.     return 'rss';
  604.   }
  605.  
  606.   return 'text';
  607. }
  608.  
  609. sub reformat_html($$) {
  610.   my ($body, $rss_p) = @_;
  611.   $_ = $body;
  612.  
  613.   if (! $rss_p) {
  614.     # In HTML, unfold lines (this breaks PRE.  Sue me.)
  615.     # In RSS, assume \n means literal line break.
  616.     s@[\r\n]@ @gsi;
  617.   }
  618.  
  619.   s@<!--.*?-->@@gsi;                 # lose comments
  620.   s@<(STYLE|SCRIPT)\b[^<>]*>.*?</\1\s*>@@gsi;    # lose css and js
  621.  
  622.   s@</?(BR|TR|TD|LI|DIV)\b[^<>]*>@\n@gsi; # line break at BR, TD, DIV, etc
  623.   s@</?(P|UL|OL|BLOCKQUOTE)\b[^<>]*>@\n\n@gsi; # two line breaks
  624.  
  625.   s@<lj\s+user=\"?([^<>\"]+)\"?[^<>]*>?@$1@gsi;  # handle <LJ USER=>
  626.   s@</?[BI]>@*@gsi;                         # bold, italic => asterisks
  627.  
  628.  
  629.   s@<[^<>]*>?@@gs;                # lose all other HTML tags
  630.   $_ = de_entify ($_);            # convert HTML entities
  631.  
  632.   # elide any remaining non-Latin1 binary data...
  633.   s/([\177-\377]+(\s*[\177-\377]+)[^a-z\d]*)/½...╗ /g;
  634.   #s/([\177-\377]+(\s*[\177-\377]+)[^a-z\d]*)/½$1╗ /g;
  635.  
  636.   $_ .= "\n";
  637.  
  638.   s/[ \t]+$//gm;                  # lose whitespace at end of line
  639.   s@\n\n\n+@\n\n@gs;              # compress blank lines
  640.  
  641.   if (!defined($wrap_columns) || $wrap_columns > 0) {
  642.     $Text::Wrap::columns = ($wrap_columns || 72);
  643.     $_ = wrap ("", "  ", $_);     # wrap the lines as a paragraph
  644.     s/[ \t]+$//gm;                # lose whitespace at end of line again
  645.   }
  646.  
  647.   s/^\n+//gs;
  648.  
  649.   y/A-Za-z/N-ZA-Mn-za-m/ if ($nyarlathotep_p);
  650.   print STDOUT $_;
  651. }
  652.  
  653.  
  654. sub reformat_rss($) {
  655.   my ($body) = @_;
  656.  
  657.   $body =~ s/(<(ITEM|ENTRY)\b)/\001\001$1/gsi;
  658.   my @items = split (/\001\001/, $body);
  659.  
  660.   print STDERR "$progname: converting RSS ($#items items)...\n"
  661.     if ($verbose > 2);
  662.  
  663.   shift @items;
  664.  
  665.   # Let's skip forward in the stream by a random amount, so that if
  666.   # two copies of ljlatest are running at the same time (e.g., on a
  667.   # multi-headed machine), they get different text.  (Put the items
  668.   # that we take off the front back on the back.)
  669.   #
  670.   if ($#items > 7) {
  671.     my $n = int (rand ($#items - 5));
  672.     print STDERR "$progname: rotating by $n items...\n" if ($verbose > 2);
  673.     while ($n-- > 0) {
  674.       push @items, (shift @items);
  675.     }
  676.   }
  677.  
  678.   my $i = -1;
  679.   foreach (@items) {
  680.     $i++;
  681.  
  682.     my ($title, $body1, $body2, $body3);
  683.     
  684.     $title = $3 if (m@<((TITLE)       [^<>\s]*)[^<>]*>\s*(.*?)\s*</\1>@xsi);
  685.     $body1 = $3 if (m@<((DESCRIPTION) [^<>\s]*)[^<>]*>\s*(.*?)\s*</\1>@xsi);
  686.     $body2 = $3 if (m@<((CONTENT)     [^<>\s]*)[^<>]*>\s*(.*?)\s*</\1>@xsi);
  687.     $body3 = $3 if (m@<((SUMMARY)     [^<>\s]*)[^<>]*>\s*(.*?)\s*</\1>@xsi);
  688.  
  689.     # If there are both <description> and <content> or <content:encoded>,
  690.     # use whichever one contains more text.
  691.     #
  692.     if ($body3 && length($body3) >= length($body2 || '')) {
  693.       $body2 = $body3;
  694.     }
  695.     if ($body2 && length($body2) >= length($body1 || '')) {
  696.       $body1 = $body2;
  697.     }
  698.  
  699.     if (! $body1) {
  700.       if ($title) {
  701.         print STDERR "$progname: no body in item $i (\"$title\")\n"
  702.           if ($verbose > 2);
  703.       } else {
  704.         print STDERR "$progname: no body or title in item $i\n"
  705.           if ($verbose > 2);
  706.         next;
  707.       }
  708.     }
  709.  
  710.     $title = rss_field_to_html ($title || '');
  711.     $body1 = rss_field_to_html ($body1 || '');
  712.  
  713.     $title = '' if ($body1 eq $title);  # Identical in Twitter's atom feed.
  714.  
  715.     reformat_html ("$title<P>$body1", 1);
  716.     print "\n";
  717.   }
  718. }
  719.  
  720.  
  721. sub rss_field_to_html($) {
  722.   my ($body) = @_;
  723.  
  724.   # Assume that if <![CDATA[...]]> is present, everything inside that.
  725.   #
  726.   if ($body =~ m/^\s*<!\[CDATA\[(.*?)\]\s*\]/is) {
  727.     $body = $1;
  728.   } else {
  729.     $body = de_entify ($body);      # convert entities to get HTML from XML
  730.   }
  731.  
  732.   $body = de_unicoddle ($body);     # convert UTF8 to Latin1
  733.   return $body;
  734. }
  735.  
  736.  
  737. sub reformat_text($) {
  738.   my ($body) = @_;
  739.  
  740.   # only re-wrap if --cols was specified.  Otherwise, dump it as is.
  741.   #
  742.   if ($wrap_columns && $wrap_columns > 0) {
  743.     print STDERR "$progname: wrapping at $wrap_columns...\n" if ($verbose > 2);
  744.     $Text::Wrap::columns = $wrap_columns;
  745.     $body = wrap ("", "", $body);
  746.     $body =~ s/[ \t]+$//gm;
  747.   }
  748.  
  749.   $body =~ y/A-Za-z/N-ZA-Mn-za-m/ if ($nyarlathotep_p);
  750.   print STDOUT $body;
  751. }
  752.  
  753.  
  754. sub get_url_text($) {
  755.   my ($url) = @_;
  756.  
  757.   # historical suckage: the environment variable name is lower case.
  758.   $http_proxy = $ENV{http_proxy} || $ENV{HTTP_PROXY};
  759.  
  760.   if ($http_proxy && $http_proxy =~ m@^http://([^/]*)/?$@ ) {
  761.     # historical suckage: allow "http://host:port" as well as "host:port".
  762.     $http_proxy = $1;
  763.   }
  764.  
  765.   my ($ct, $body) = get_url ($url);
  766.  
  767.   $ct = guess_content_type ($ct, $body);
  768.   if ($ct eq 'html') {
  769.     print STDERR "$progname: converting HTML...\n" if ($verbose > 2);
  770.     reformat_html ($body, 0);
  771.   } elsif ($ct eq 'rss')  {
  772.     reformat_rss ($body);
  773.   } else {
  774.     print STDERR "$progname: plain text...\n" if ($verbose > 2);
  775.     reformat_text ($body);
  776.   }
  777. }
  778.  
  779.  
  780.  
  781. sub error($) {
  782.   my ($err) = @_;
  783.   print STDERR "$progname: $err\n";
  784.   exit 1;
  785. }
  786.  
  787. sub usage() {
  788.   print STDERR "usage: $progname [ --options ... ]\n" .
  789.    ("\n" .
  790.     "       Prints out some text for use by various screensavers,\n" .
  791.     "       according to the options in the ~/.xscreensaver file.\n" .
  792.     "       This may dump the contents of a file, run a program,\n" .
  793.     "       or load a URL.\n".
  794.     "\n" .
  795.     "   Options:\n" .
  796.     "\n" .
  797.     "       --date           Print the host name and current time.\n" .
  798.     "\n" .
  799.     "       --text STRING    Print out the given text.  It may contain %\n" .
  800.     "                        escape sequences as per strftime(2).\n" .
  801.     "\n" .
  802.     "       --file PATH      Print the contents of the given file.\n" .
  803.     "                        If --cols is specified, re-wrap the lines;\n" .
  804.     "                        otherwise, print them as-is.\n" .
  805.     "\n" .
  806.     "       --program CMD    Run the given program and print its output.\n" .
  807.     "                        If --cols is specified, re-wrap the output.\n" .
  808.     "\n" .
  809.     "       --url HTTP-URL   Download and print the contents of the HTTP\n" .
  810.     "                        document.  If it contains HTML, RSS, or Atom,\n" .
  811.     "                        it will be converted to plain-text.\n" .
  812.     "\n" .
  813.     "       --cols N         Wrap lines at this column.  Default 72.\n" .
  814.     "\n");
  815.   exit 1;
  816. }
  817.  
  818. sub main() {
  819.  
  820.   my $load_p = 1;
  821.   my $cocoa_id = undef;
  822.  
  823.   while ($#ARGV >= 0) {
  824.     $_ = shift @ARGV;
  825.     if ($_ eq "--verbose") { $verbose++; }
  826.     elsif (m/^-v+$/) { $verbose += length($_)-1; }
  827.     elsif (m/^--?date$/)    { $text_mode = 'date';
  828.                               $load_p = 0; }
  829.     elsif (m/^--?text$/)    { $text_mode = 'literal';
  830.                               $text_literal = shift @ARGV;
  831.                               $load_p = 0; }
  832.     elsif (m/^--?file$/)    { $text_mode = 'file';
  833.                               $text_file = shift @ARGV;
  834.                               $load_p = 0; }
  835.     elsif (m/^--?program$/) { $text_mode = 'program';
  836.                               $text_program = shift @ARGV;
  837.                               $load_p = 0; }
  838.     elsif (m/^--?url$/)     { $text_mode = 'url';
  839.                               $text_url = shift @ARGV;
  840.                               $load_p = 0; }
  841.     elsif (m/^--?col(umn)?s?$/) { $wrap_columns = 0 + shift @ARGV; }
  842.     elsif (m/^--?cocoa$/)   { $cocoa_id = shift @ARGV; }
  843.     elsif (m/^--?nyarlathotep$/) { $nyarlathotep_p++; }
  844.     elsif (m/^-./) { usage; }
  845.     else { usage; }
  846.   }
  847.  
  848.   if ($load_p) {
  849.  
  850.     if (!defined ($cocoa_id)) {
  851.       # see OSX/XScreenSaverView.m
  852.       $cocoa_id = $ENV{XSCREENSAVER_CLASSPATH};
  853.     }
  854.  
  855.     if (defined ($cocoa_id)) {
  856.       get_cocoa_prefs($cocoa_id);
  857.     } else {
  858.       get_x11_prefs();
  859.     }
  860.   }
  861.  
  862.   output();
  863. }
  864.  
  865. main();
  866. exit 0;
  867.